5469b10fcbbf0de9f8407c8815bfc09a51de44ef,src/com/owent/xresloader/engine/ExcelEngine.java,ExcelEngine,cell2b,#Row#number#FormulaEvaluator#,294
Before Change
return false;
if (null != evalor && Cell.CELL_TYPE_FORMULA == c.getCellType())
evalor.evaluateInCell(c);
switch (c.getCellType()) {
case Cell.CELL_TYPE_BLANK:
After Change
if (null == c)
return false;
CellValue cv = null;
if (null != evalor && Cell.CELL_TYPE_FORMULA == c.getCellType())
cv = evalor.evaluate(c);
int type = (null == cv)? c.getCellType(): cv.getCellType();
switch (type) {
case Cell.CELL_TYPE_BLANK:
return false;